home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
LIBRARY
/
PASCALL
/
VIDEO
/
TESTVID.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-06-14
|
393b
|
35 lines
program testvid;
uses
Crt,FPal,FRgb;
function inkey:char;
begin
if keypressed then inkey:=readkey
else inkey:=#0;
end;
var
P0:TFRPalette;
P1:TFPPlaette;
s:boolean;
begin
P0.Init;
P1.Init;
P0.Copy;
P1.Copy;
s:=false;
repeat
P1.Cycle;
until inkey=#27;
P0.Push;
P0.Done;
P1.Done;
end.